a30fa53b29ba29a60a81e3cd260999681b8ff1e5,src/main/java/org/bytedeco/javacpp/PointerPointer.java,PointerPointer,PointerPointer,#number#,116
Before Change
throw new RuntimeException("No native JavaCPP library in memory. (Has Loader.load() been called?)", e);
} catch (OutOfMemoryError e) {
OutOfMemoryError e2 = new OutOfMemoryError("Cannot allocate new PointerPointer(" + size + "), "
+ "totalBytes = " + totalBytes() + ", physicalBytes = " + physicalBytes());
e2.initCause(e);
throw e2;
}
After Change
throw new RuntimeException("No native JavaCPP library in memory. (Has Loader.load() been called?)", e);
} catch (OutOfMemoryError e) {
OutOfMemoryError e2 = new OutOfMemoryError("Cannot allocate new PointerPointer(" + size + "): "
+ "totalBytes = " + formatBytes(totalBytes()) + ", physicalBytes = " + formatBytes(physicalBytes()));
e2.initCause(e);
throw e2;
}